home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmj / Source / NumberTile.h < prev    next >
C/C++ Source or Header  |  1991-03-08  |  330b  |  27 lines

  1.  
  2. /*
  3.  * There are ten number tiles, 0 to 9.
  4.  *    Number Tiles are used to show the number of tiles
  5.  *    remaining to be cleared on the game board.
  6.  *
  7.  $Author$
  8.  $Header$
  9.  *
  10.  $Log$
  11.  */
  12.  
  13. #import    "Tile.h"
  14.  
  15. extern "Objective-C" {
  16. #import    <objc/objc.h>
  17. }
  18.  
  19.  
  20. class NumberTile : public Tile {
  21.  
  22. public:
  23.     virtual void    drawImage( NXPoint );
  24.  
  25. };
  26.  
  27.